* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

:root {
  --primary-black: #0d1b2a;
  --crimson: #ff6a00;
  --white: #ffffff;
  --light-gray: #f4f4f4;
  --light-blue: #eaf3ff;
  --header-height: 72px;
}

/* Header */
header {
  background: var(--primary-black);
  color: var(--white);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: saturate(180%) blur(8px);
  transition: background 0.4s ease, top 0.6s ease, opacity 0.6s ease;
  top: -120px;
  opacity: 0;
}

header.header-visible {
  top: 0;
  opacity: 1;
}

.header-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Page content offset below fixed header */
.page-content {
  padding-top: calc(var(--header-height) + 12px);
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: large;
  transition: color 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
  header {
    background: #000000 !important;
    backdrop-filter: none;
  }
  .mobile-menu {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 360px;
    background: black;
    border-left: 1px solid rgba(13, 27, 42, 0.12);
    padding: 1.25rem;
    gap: 1rem;
    box-shadow: -8px 0 24px rgba(13, 27, 42, 0.18);
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    z-index: 1100;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--white);
  }
}

/* Floating mobile menu button when header hidden (Android/Small Screens) */
@media (max-width: 768px) {
  .mobile-menu.mobile-menu-fab {
    display: none;
    position: fixed;
    top: 12px;
    right: 12px;
    background: black;
    color: #ffffff;
    border: none;
    border-radius: 28px;
    padding: 10px 14px;
    font-size: 1.2rem;
    z-index: 1200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    cursor: pointer;
  }
  header.header-hidden + .mobile-menu.mobile-menu-fab {
    display: block;
  }
  header.header-hidden .mobile-menu {
    display: none;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white);
}

.logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: solid;
  font-size: large;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--crimson);
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}
/* Staggered animation for menu items */
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }
/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  z-index: 1;
  transition: opacity 2s ease-in-out;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(255, 106, 0, 0.3));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--crimson), var(--primary-black));
  color: var(--white);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
}

/* Sections */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-black);
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, var(--crimson), var(--primary-black));
  margin: 1rem auto;
}

/* Stats Section */
.stats {
  background: var(--light-gray);
  padding: 4rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 1;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--crimson);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stat-plus {
  font-size: 2rem;
  color: var(--crimson);
}

.stat-percent {
  font-size: 2rem;
  color: var(--crimson);
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.counter {
  display: inline-block;
}

/* About Section */
.about {
  background: var(--white);
}

.about-content {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* CEO Section */
.ceo-section {
  background: var(--white);
}

.ceo-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.ceo-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.2);
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ceo-photo.empty {
  background: var(--white);
  border: 2px dashed rgba(13, 27, 42, 0.25);
  color: rgba(13, 27, 42, 0.7);
}

.ceo-photo.empty::after {
  content: "Upload CEO Photo";
  font-weight: 600;
}

.ceo-details h3 {
  color: var(--primary-black);
  margin-bottom: 0.75rem;
}

.ceo-details .role {
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 1rem;
}

.ceo-details p {
  margin-bottom: 1rem;
}

.ceo-upload {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.ceo-upload input[type="file"] {
  padding: 8px;
  border: 1px solid rgba(13, 27, 42, 0.15);
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 768px) {
  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .ceo-photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .ceo-details {
    text-align: center;
  }
}
/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--crimson);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: var(--crimson);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-image {
  width: 100%;
  height: 200px;
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-style: italic;
}

/* Pricing Section */
.pricing {
  background: var(--light-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--crimson);
}

.pricing-card h4 {
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.price {
  color: var(--crimson);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  height: 250px;
  background: var(--light-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-style: italic;
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-item .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 106, 0, 0.8);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-item .play-button:hover {
  background: rgba(255, 106, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .video-overlay {
  opacity: 0;
}

/* Contact Section */
.contact {
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--crimson) 100%
  );
  color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info h3 {
  color: var(--crimson);
  margin-bottom: 1rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
}

.submit-btn {
  background: var(--crimson);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: var(--primary-black);
}

/* Footer */
footer {
  background: var(--primary-black);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.contact-item::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--crimson);
  border-radius: 50%;
  flex-shrink: 0;
}

.services-list {
  list-style: none;
}

.services-list li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  position: relative;
}

.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 10px;
  background: var(--crimson);
  border-radius: 50%;
}

.newsletter-form {
  display: flex;
  margin-bottom: 2rem;
  border-radius: 25px;
  overflow: hidden;
  background: var(--white);
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
  background: transparent;
}

.newsletter-btn {
  background: var(--crimson);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--primary-black);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: var(--crimson);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--crimson);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-black);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

/* Social Media Links Styling */
.social-media {
  margin-top: 2rem;
}

.social-media h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.social-links-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  padding: 8px 15px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 106, 0, 0.3);
}

.social-links-contact a:hover {
  background: var(--crimson);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  

  .mobile-menu {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  

  

  .social-links-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}
